home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Developer CD 2.1
/
Amiga Developer CD v2.1.iso
/
Reference
/
DevCon
/
Milan_1991
/
Devcon91.4
/
AppShell
/
include
/
clib
/
macros.h
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-09-01
|
341 b
|
17 lines
#ifndef CLIB_MACROS_H
#define CLIB_MACROS_H
/*
** $Id: macros.h,v 36.0 90/11/30 15:51:33 eric Exp $
**
** C prototypes
**
** (C) Copyright 1990 Commodore-Amiga, Inc.
** All Rights Reserved
*/
#define MAX(a,b) ((a)>(b)?(a):(b))
#define MIN(a,b) ((a)<(b)?(a):(b))
#define ABS(x) ((x<0)?(-(x)):(x))
#endif /* CLIB_MACROS_H */